VERSION 5.00 Begin VB.Form frmMain Caption = "Demo - Main Form" ClientHeight = 3525 ClientLeft = 105 ClientTop = 390 ClientWidth = 4815 LinkTopic = "Form1" ScaleHeight = 3525 ScaleWidth = 4815 StartUpPosition = 3 'Windows Default Begin VB.CommandButton cmdStretch Caption = "Demo Stretch Mode" Height = 495 Left = 1080 TabIndex = 1 Top = 2040 Width = 2175 End Begin VB.CommandButton cmdAnchor Caption = "Demo Anchor Mode" Height = 495 Left = 1080 TabIndex = 0 Top = 1080 Width = 2175 End Attribute VB_Name = "frmMain" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = False Attribute VB_PredeclaredId = True Attribute VB_Exposed = False Private Sub cmdAnchor_Click() frmTab.Show 0 End Sub Private Sub cmdStretch_Click() frmStretch.Show 0 End Sub